Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Write HTML-Headers in Title Case in jdt.tips.user #2427

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Show in' for more Details</title>
<title>Show in' for More Details</title>
</head>
<body>
<h2>'Show in' for more Details</h2>
<h2>'Show In' for More Details</h2>
Whatever element you have selected, code or item, 'Show in...'
(Alt+Shift+W) command pops up useful views for various details.
<br>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Extract class refactoring (Alt+Shift+T)</title>
<title>Extract Class Refactoring (Alt+Shift+T)</title>
</head>
<body>
<h2>Extract class refactoring (Alt+Shift+T)</h2>
<h2>Extract Class Refactoring (Alt+Shift+T)</h2>
The 'Extract class...' refactoring (from Alt+Shift+T) extracts a group
of fields into a separate class and replaces all occurrences to fit the
new structure.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<title>Code completion</title>
</head>
<body>
<h2>Code completion</h2>
<h2>Code Completion</h2>
Code completion allows you to quickly complete statements in your code.
For example, start typing a part of a method name and press CTRL+Space
to complete it. Multiple choices are presents to you via a popup.
Expand Down
Loading