Skip to content

Commit

Permalink
Terminology: Change "Inter-note link" to "Internal link" (#2360)
Browse files Browse the repository at this point in the history
* change to internal link

* may as well rename it in a comment too
  • Loading branch information
codebykat authored Sep 24, 2020
1 parent 2cbc9c4 commit b325afc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/components/note-preview/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const NotePreview: FunctionComponent<Props> = ({

const tag = node as HTMLAnchorElement;

// Intercept inter-note links
// Intercept internal links
if (tag.href.startsWith('simplenote://note/')) {
const match = /^simplenote:\/\/note\/(.+)$/.exec(tag.href);
if (!match) {
Expand Down
2 changes: 1 addition & 1 deletion lib/note-info/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export class NoteInfo extends Component<Props> {
</div>
<div className="note-info-panel note-info-internal-link theme-color-border">
<span className="note-info-item-text">
<span className="note-info-name">Inter-Note link</span>
<span className="note-info-name">Internal link</span>
<div className="note-info-form">
<input
className="note-info-detail note-info-link-text"
Expand Down

0 comments on commit b325afc

Please sign in to comment.