Skip to content

Commit ea179a1

Browse files
author
syreal17
committed
Fix typos
1 parent 6cae8b5 commit ea179a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

chapters/environment.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ To get started, you might be interested in https://www.virtualbox.org[VirtualBox
4141

4242
When accessing a remote server, you may need a Virtual Private Network, or VPN, to connect to it. This is a way to securely connect, as well as protect your privacy.
4343

44-
In this arrangement, your data will be encrypted and sent to the VPN provider, who will then send it to a remote server, like a website or your hacking. If a third party intercepts your data, they won't be able to read it, and if they're listening to your traffic, all they'll see is the connection to the VPN, rather than where you go next. Pretty handy!
44+
In this arrangement, your data will be encrypted and sent to the VPN provider, who will then send it to a remote server, such as a website. If a third party intercepts your data, they won't be able to read it, and if they're listening to your traffic, all they'll see is the connection to the VPN, rather than where you go next. Pretty handy!
4545

4646
In industry, companies often require their employees to use a company VPN to access their internal network from outside the office. Just like how VPNs can protect an individual's data, they can protect a company's sensitive information too! Without a VPN, employees working remotely may be vulnerable to their credentials being stolen.
4747

chapters/git.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ Afterward, your original branch will be updated with the changes from the other,
177177
178178
=== Pulling & Pushing
179179
180-
After finishing your changes and pulling and merging the with the main branch, you can 'push' your changes to be used by others, or yourself on a different device. If you're working on a cloned copy, you can use `git push` to send your commits to their source, the remote repository.
180+
After finishing your changes and pulling and merging with the main branch, you can 'push' your changes to be used by others, or yourself on a different device. If you're working on a cloned copy, you can use `git push` to send your commits to their source, the remote repository.
181181
182182
If you're working with files you've created locally, you'll need to create a remote repository to push to. This can be done with `git remote add origin <remote repository URL>`. You can then push your changes to the remote repository with `git push -u origin <branch name>`.
183183

0 commit comments

Comments
 (0)