Skip to content

Commit 8245da1

Browse files
committed
move documentation admonishment to the introduction
1 parent b6eb8e4 commit 8245da1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

book_src/introduction.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ Expected subjects include:
2323
* Creating ergonomic wrapper functions to make the API easily used with the rest of Rust.
2424
* Having those wrapper functions be fully safe (in the Rust sense) when possible, or at least making them as error-proof as we can.
2525

26+
I will be frequently linking to the documentation pages many of the the important things we deal with.
27+
I expect you to *actually go to those pages* and read what they say.
28+
I will be covering much, but I can't cover every single detail every single time.
29+
You should **always** read the documentation for yourself as well as reading this tutorial.
30+
2631
**Reminder:** The "absolutely no dependencies" thing is for demonstration purposes only.
2732
If you actually want to draw a triangle within a reasonable amount of development time, please do feel free to use dependencies.
28-
Depending on what you need to do, there's generally many good crates available.
33+
Depending on what you need to do, there's generally many good crates available.

book_src/opening_a_window/win32.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ There's also some C++ oriented APIs for interacting with Windows as well (called
88
It's *much* easier for Rust to bind to and interact with a C oriented API than a C++ oriented API,
99
so we'll start with just using Win32 to interact with Windows.
1010

11-
**Note:** I will be linking to the MSDN pages for nearly all the important things we deal with.
12-
I expect you to *actually go to those pages* and read what they say.
13-
I will be covering much of what they deal with, but I can't cover every single detail.
14-
You should **always** read the documentation for yourself as well as reading this tutorial.
15-
1611
## Search The Web
1712

1813
Okay, for the sake of the lesson let's pretend that *even I* don't know what to do.

0 commit comments

Comments
 (0)