Skip to content

Commit

Permalink
More review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pepone committed Oct 10, 2023
1 parent fb7591b commit 259b937
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 16 deletions.
2 changes: 1 addition & 1 deletion csharp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

The [Ice framework] provides everything you need to build networked applications, including RPC, pub/sub, server deployment, and more.

Ice for .NET is the C# / .NET implementation of Ice.
Ice for .NET is the C# / .NET implementation of the Ice framework.

## Sample Code

Expand Down
2 changes: 1 addition & 1 deletion js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
The [Ice framework] provides everything you need to build networked applications,
including RPC, pub/sub, server deployment, and more.

Ice for JavaScript is the JavaScript implementation of Ice.
Ice for JavaScript is the JavaScript implementation of the Ice framework.

## Sample Code

Expand Down
2 changes: 1 addition & 1 deletion matlab/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
The [Ice framework] provides everything you need to build networked applications,
including RPC, pub/sub, server deployment, and more.

Ice for MATLAB is the MATLAB implementation of Ice.
Ice for MATLAB is the MATLAB implementation of the Ice framework.

## Sample Code

Expand Down
14 changes: 7 additions & 7 deletions objective-c/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

The [Ice framework] provides everything you need to build networked applications, including RPC, pub/sub, server deployment, and more.

Ice for Objective-C is the Objective-C implementation of Ice.
Ice for Objective-C is the Objective-C implementation of the Ice framework.

## Sample Code

Expand Down Expand Up @@ -72,12 +72,12 @@ main(int argc, char* argv[])
{
communicator = [ICEUtil createCommunicator:&argc argv:argv];
id<ICEObjectAdapter> adapter = [communicator
createObjectAdapterWithEndpoints: @"Hello"
endpoints:@"default -p 10000"];
[adapter add:[HelloI hello] identity:[ICEUtil stringToIdentity:@"hello"]];
[adapter activate];
[communicator waitForShutdown];
id<ICEObjectAdapter> adapter = [communicator
createObjectAdapterWithEndpoints: @"Hello"
endpoints:@"default -p 10000"];
[adapter add:[HelloI hello] identity:[ICEUtil stringToIdentity:@"hello"]];
[adapter activate];
[communicator waitForShutdown];
}
@catch(ICELocalException* ex)
{
Expand Down
2 changes: 1 addition & 1 deletion php/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
The [Ice framework] provides everything you need to build networked applications,
including RPC, pub/sub, server deployment, and more.

Ice for PHP is the PHP implementation of Ice.
Ice for PHP is the PHP implementation of the Ice framework.

## Sample Code

Expand Down
4 changes: 1 addition & 3 deletions python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
The [Ice framework] provides everything you need to build networked applications,
including RPC, pub/sub, server deployment, and more.

Ice for Python is the Python implementation of Ice.
Ice for Python is the Python implementation of the Ice framework.

## Sample Code

Expand Down Expand Up @@ -47,12 +47,10 @@ import Ice
Ice.loadSlice('Hello.ice')
import Demo


class Printer(Demo.Hello):
def sayHello(self, current):
print("Hello World!")


# Ice.initialize returns an initialized Ice communicator, the communicator is destroyed
# once it goes out of scope.
with Ice.initialize(sys.argv) as communicator:
Expand Down
2 changes: 1 addition & 1 deletion ruby/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
The [Ice framework] provides everything you need to build networked applications,
including RPC, pub/sub, server deployment, and more.

Ice for Ruby is the Ruby implementation of Ice.
Ice for Ruby is the Ruby implementation of the Ice framework.

## Sample Code

Expand Down
2 changes: 1 addition & 1 deletion swift/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

The [Ice framework] provides everything you need to build networked applications, including RPC, pub/sub, server deployment, and more.

Ice for Swift is the swift implementation of Ice.
Ice for Swift is the swift implementation of the Ice framework.

## Sample Code

Expand Down

0 comments on commit 259b937

Please sign in to comment.