Skip to content

Commit

Permalink
spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
LisiLisenok committed Feb 25, 2016
1 parent 3960756 commit 6b0cf97
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Example:
[String, Integer] serverParameters => ["host", 123];

// initializer - binds to server specified by host:port,
// if successfull proceeds with test or aborted if some error occured
// if successful proceeds with test or aborted if some error occured
parameters(`value serverParameters`)
void setupServer(TestInitContext context, String host, Integer port) {
Server server = Server();
Expand All @@ -76,7 +76,7 @@ Example:
);
}

// test functions, setupServer is called just once - neveretheless the actual number of test functions
// test functions, setupServer is called just once - nevertheless the actual number of test functions
test init(`function setupServer`) void firstTest AsyncTestContext context) {
String serverName = serverParameters.host + ":``port``";
assert ( exists server = context.get<Server>("serverName") );
Expand Down
4 changes: 2 additions & 2 deletions source/herd/asynctest/module.ceylon
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
[String, Integer] serverParameters => [\"host\", 123];
// initializer - binds to server specified by host:port,
// if successfull proceeds with test or aborted if some error occured
// if successful proceeds with test or aborted if some error occured
parameters(`value serverParameters`)
void setupServer(TestInitContext context, String host, Integer port) {
Server server = Server();
Expand All @@ -74,7 +74,7 @@
);
}
// test functions, setupServer is called just once - neveretheless the actual number of test functions
// test functions, setupServer is called just once - nevertheless the actual number of test functions
test init(`function setupServer`) void firstTest AsyncTestContext context) {
String serverName = serverParameters.host + \":\`\`port\`\`\";
assert ( exists server = context.get<Server>(\"serverName\") );
Expand Down

0 comments on commit 6b0cf97

Please sign in to comment.