From c2ba1fc65f890771433976cd996c6efc30f58182 Mon Sep 17 00:00:00 2001 From: Jonatas Emidio Date: Tue, 21 Feb 2023 20:42:32 +0000 Subject: [PATCH] docs: Fixing components sub-directory path (#2359) At the *Other classes* session, when it is mentioned that we need to create the `components` sub-directory, the tutorial is guiding us to add it in the root, but on the structure below, it is possible to see that it should be created inside the `libs` folder instead. It seems to be better to be more explicit in this paragraph. --- doc/tutorials/klondike/step2.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorials/klondike/step2.md b/doc/tutorials/klondike/step2.md index 6668824cb..065a6e53b 100644 --- a/doc/tutorials/klondike/step2.md +++ b/doc/tutorials/klondike/step2.md @@ -85,8 +85,8 @@ As we already mentioned in the previous chapter, our game mainly consists of will defer implementation of that class to the next chapter. For now, let's create the container classes, as shown on the sketch. These are: -`Stock`, `Waste`, `Pile` and `Foundation`. In your project directory create a -sub-directory `components`, and then the file `components/stock.dart`. In that +`Stock`, `Waste`, `Pile` and `Foundation`. Inside the `lib/` folder create a +sub-directory `components`, and then the file `lib/components/stock.dart`. In that file write ```dart