Remove unneeded "will"s + minor fixes
[lttng-docs.git] / contents / using-lttng / instrumenting / c-application / building-linking / dynamic-linking.md
index aec70c690ad82cd65566e2a8ac1792974aeb3c51..468cdbfb03c51309bc3264c253eab681a144ffa3 100644 (file)
@@ -7,7 +7,7 @@ dynamic linking: the library and its member functions are explicitly
 sought, loaded and unloaded at runtime using `libdl`.
 
 It has to be noted that, for a variety of reasons, the created shared
-library will be dynamically _loaded_, as opposed to dynamically
+library is be dynamically _loaded_, as opposed to dynamically
 _linked_. The tracepoint provider shared object is, however, linked
 with `liblttng-ust`, so that `liblttng-ust` is guaranteed to be loaded
 as soon as the tracepoint provider is. If the tracepoint provider is
@@ -60,7 +60,7 @@ gcc <strong>-shared -Wl,--no-as-needed -o tp.so -llttng-ust</strong> tp.o
 </pre>
 
 As previously stated, this tracepoint provider shared object isn't
-linked with the user application: it will be loaded manually. This is
+linked with the user application: it's loaded manually. This is
 why the application is built with no mention of this tracepoint
 provider, but still needs `libdl`:
 
This page took 0.023482 seconds and 4 git commands to generate.