diff --git a/doc/book/src/Compositors.md b/doc/book/src/Compositors.md index 251be316..61d1bdbd 100644 --- a/doc/book/src/Compositors.md +++ b/doc/book/src/Compositors.md @@ -66,7 +66,7 @@ Another option is to use a nested Wayland instance. For this, the Wayland server will have to be a library that the host application links to. The host application will then pass the Wayland server socket name to the embedded application, and will need to implement the Wayland compositor interface. The -host application composites the client surfaces as part of it's window, that is, +host application composites the client surfaces as part of its window, that is, in the web page or in the panel. The benefit of nesting the Wayland server is that it provides the requests the embedded client needs to inform the host about buffer updates and a mechanism for forwarding input events from the host diff --git a/doc/publican/Client.xml b/doc/publican/Client.xml index 19bf3e95..cb21598f 100644 --- a/doc/publican/Client.xml +++ b/doc/publican/Client.xml @@ -25,7 +25,7 @@ are received from the server until they can be processed. Multi-threading is supported by creating an additional wl_event_queue for each additional thread, each object can have - it's events placed in a particular queue, so potentially a + its events placed in a particular queue, so potentially a different thread could be made to handle the events for each object created. diff --git a/tests/data/bad-identifier-protocol.xml b/tests/data/bad-identifier-protocol.xml index 7a172045..1aafb32d 100644 --- a/tests/data/bad-identifier-protocol.xml +++ b/tests/data/bad-identifier-protocol.xml @@ -3,6 +3,6 @@ - + diff --git a/tests/test-compositor.c b/tests/test-compositor.c index efec31fa..f412fe6e 100644 --- a/tests/test-compositor.c +++ b/tests/test-compositor.c @@ -517,7 +517,7 @@ struct client *client_connect(void) assert(c->wl_display && "Failed connecting to display"); /* create test_compositor proxy. Do it with temporary - * registry so that client can define it's own listener later */ + * registry so that client can define its own listener later */ reg = wl_display_get_registry(c->wl_display); assert(reg); wl_registry_add_listener(reg, ®istry_listener, c);