From ac5b68721885a3c8a59c0dedcfeb199d2ce9a635 Mon Sep 17 00:00:00 2001 From: Igor Irianto Date: Thu, 12 Nov 2020 18:45:58 -0600 Subject: [PATCH] Remove special characters --- ch03_opening_and_searching_files.md | 12 ++++++------ ch12_search_and_substitute.md | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ch03_opening_and_searching_files.md b/ch03_opening_and_searching_files.md index 83f7956..aa2c705 100644 --- a/ch03_opening_and_searching_files.md +++ b/ch03_opening_and_searching_files.md @@ -76,12 +76,12 @@ Here are what they mean: The take-home here is that you can modify your own paths. Let's assume this is your project structure: ``` -▾ app/ - ▸ assets/ - ▾ controllers/ - application_controller.rb - comments_controller.rb - users_controller.rb +app/ + - assets/ + - controllers/ + - application_controller.rb + - comments_controller.rb + - users_controller.rb ... ``` diff --git a/ch12_search_and_substitute.md b/ch12_search_and_substitute.md index 5254afe..ac2e3bc 100644 --- a/ch12_search_and_substitute.md +++ b/ch12_search_and_substitute.md @@ -645,8 +645,8 @@ small dog Assume your directory structure looks like this: ``` -├── food.txt -├── animal.txt +- food.txt +- animal.txt ``` First, capture both `food.txt` and `animal.txt` inside `:args`. Recall from earlier chapters that `:args` can be used to create a list of file names. There are several ways to do this from inside Vim: