Skip to content

Commit e15d9e1

Browse files
committed
fixing some more broken links (those files won't be constantly checked with the link checker)
1 parent 1253d87 commit e15d9e1

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

meta/innersource-spelling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ We encourage you to use the word as a proper noun (like “We use InnerSource in
1010

1111
We favor the spelling **InnerSource**, for the following reasons:
1212

13-
1. That’s the way Tim O’Reilly [spelled it in 2000][opengl_1200] (he was into Perl and camel-case was a thing). Also see the [Foreword of the Adopting InnerSource book](foreword_AdoptingInnerSource) for more of Tim O’Reilly's own words on the topic.
13+
1. That’s the way Tim O’Reilly [spelled it in 2000][opengl_1200] (he was into Perl and camel-case was a thing). Also see the [Foreword of the Adopting InnerSource book][foreword_AdoptingInnerSource] for more of Tim O’Reilly's own words on the topic.
1414
2. If you set up side-by-side Google searches for “Inner Source” and “InnerSource” you will find that you get more hits on the former term, by only 1% of them have anything to do with what we call InnerSource. The latter term will be 100% cogent to your inquiry.
1515
3. The OSI was [denied trademark on the term “open source”][no-open-source-trademark] because it was made up of two common and unrelated terms. “InnerSource” on the other hand is a new word.
1616

meta/markdown-info.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A markdown file is a plain ASCII text file that is meant to be easy to read in plaintext, while also being pretty once rendered.
44

5-
It is similar to the format that many wiki's have. As an example, you can see [this rendered pattern](../dedicated-community-leader.md) of ours also [in plain text](/../../raw/master/dedicated-community-leader.md). You can do this for any markdown file by clicking the ``Raw`` button when viewing a file online.
5+
It is similar to the format that many wiki's have. As an example, you can see [this rendered pattern](../patterns/2-structured/dedicated-community-leader.md) of ours also [in plain text](/../../raw/master/patterns/2-structured/dedicated-community-leader.md). You can do this for any markdown file by clicking the ``Raw`` button when viewing a file online.
66

77
The ASCII is marked up in a standard format. Here are two cheatsheets for that format:
88

meta/technical-git-howto.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Command-line git steps for creating a new Pattern
22

3-
If you want to contribute a new pattern, the workflow is done through Branches and Pull Requests (PR's). You can see the available branches on [the branches URL](https://github.com/InnerSourceCommons/InnerSourcePatterns/branches/all) and existing PR's on the [Pull Request page](https://github.com/InnerSourceCommons/InnerSourcePatterns/pulls). Branches are meant to separate content, so that multiple people can work all at once. Pull Requests (PR's) are used to bring discussion/review about a specific inner source pattern.
3+
If you want to contribute a new pattern, the workflow is done through Branches and Pull Requests (PR's). You can see the available branches on [the branches URL](https://github.com/InnerSourceCommons/InnerSourcePatterns/branches/all) and existing PR's on the [Pull Request page](https://github.com/InnerSourceCommons/InnerSourcePatterns/pulls). Branches are meant to separate content, so that multiple people can work all at once. Pull Requests (PR's) are used to bring discussion/review about a specific inner source pattern.
44

55
There are indeed multiple ways to start a discussion:
66

77
* Send a Pull Request for your branch and the maintainers will receive a notification.
88
* Create an Issue and ask for comments from some of the maintainers. You can mention them using the '@' symbol prior to their github nickname.
99
* Add reviewers to the Pull Request on the website - this sends requests to review your work
1010

11-
New patterns should use, as their base, the [pattern template file](meta/pattern-template.md).
11+
New patterns should use, as their base, the [pattern template file](pattern-template.md).
1212

1313
Please, when starting a new pattern, make sure that it does not already exist. Take a look at some of the [existing patterns in this repository](/README.md#reviewed-patterns-proven-and-reviewed).
1414

@@ -69,7 +69,7 @@ branch with a new pattern named as foo should be as follows:
6969
$ git checkout -b pattern/foo
7070
```
7171

72-
You are now in the 'pattern/foo' branch. When you create a new branch, the files
72+
You are now in the 'pattern/foo' branch. When you create a new branch, the files
7373
in the directory might appear to have changed. Each branch can have slightly different content, and that is intentional. If you need to go back to the 'master' branch or another branch, you can easily 'checkout' to those as follows:
7474

7575
```
@@ -87,7 +87,7 @@ $ git checkout -b pattern/ewoks-do-not-hunt
8787
$ touch ewoks-do-not-hunt.md
8888
```
8989

90-
You can fill your [markdown](meta/markdown-info.md) file with the [pattern template text](meta/pattern-template.md) and begin to fill it in with your pattern.
90+
You can fill your [markdown](markdown-info.md) file with the [pattern template text](pattern-template.md) and begin to fill it in with your pattern.
9191

9292
Once our pattern file is ready to go, we need to add the file to the repo and
9393
commit that change to our new branch.

0 commit comments

Comments
 (0)