Skip to content

Commit a0d5a53

Browse files
authored
Merge pull request #85 from chreekat/no-tm
Swagger is not a trademark
2 parents 6586d27 + 7d5bfb3 commit a0d5a53

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Swagger 2.0 conforming json for [servant](https://github.com/haskell-servant/ser
1111

1212
### Motivation
1313

14-
Swagger is a project used to describe and document RESTful APIs.
14+
Swagger is a project used to describe and document RESTful APIs.
1515
Unlike Servant it is language-agnostic and thus is quite popular among developers
1616
in different languages. It also exists for a longer time and has more tools to work with.
1717

servant-swagger.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 1.1.5
33
x-revision: 4
44
synopsis: Generate Swagger specification for your servant API.
55
description:
6-
Swagger is a project used to describe and document RESTful APIs.
6+
Swagger is a project used to describe and document RESTful APIs.
77
Unlike Servant it is language-agnostic and thus is quite popular among developers
88
in different languages. It also exists for a longer time and has more tools to work with.
99
.

src/Servant/Swagger.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
-- This module provides means to generate and manipulate
88
-- Swagger specification for servant APIs.
99
--
10-
-- Swagger is a project used to describe and document RESTful APIs.
10+
-- Swagger is a project used to describe and document RESTful APIs.
1111
--
1212
-- The Swagger specification defines a set of files required to describe such an API.
1313
-- These files can then be used by the Swagger-UI project to display the API
1414
-- and Swagger-Codegen to generate clients in various languages.
1515
-- Additional utilities can also take advantage of the resulting files, such as testing tools.
1616
--
17-
-- For more information see <http://swagger.io/ Swagger documentation>.
17+
-- For more information see <http://swagger.io/ Swagger documentation>.
1818
module Servant.Swagger (
1919
-- * How to use this library
2020
-- $howto

0 commit comments

Comments
 (0)