From 50384d0a60dc4d23b6fa5a49d01208e9d7958576 Mon Sep 17 00:00:00 2001 From: Benjamin Drung Date: Thu, 23 May 2019 16:07:46 +0200 Subject: [PATCH] README.md: Remove indentation in example code The indentation in the go example code mixes tabs and spaces. Remove the indentation completely since the indentation is not needed. Signed-off-by: Benjamin Drung --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e3570ede3..951c043bc 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ The procfs library is organized by packages based on whether the gathered data i point is initialized, and then the stat information is read. ```go - fs, err := procfs.NewFS("/proc") - stats, err := fs.NewStat() +fs, err := procfs.NewFS("/proc") +stats, err := fs.NewStat() ``` ## Building and Testing @@ -36,8 +36,8 @@ ensure the `fixtures` directory is up to date by removing the existing directory extracting the ttar file using `make fixtures/.unpacked` or just `make test`. ```bash - rm -rf fixtures - make test +rm -rf fixtures +make test ``` Next, make the required changes to the extracted files in the `fixtures` directory. When