Skip to content

Update tech preview copy #2807

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

Merged
merged 1 commit into from
Oct 30, 2023
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
2 changes: 1 addition & 1 deletion integtest/spec/single_book_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@
it 'includes the experimental text' do
expect(body).to include(
'This functionality is in technical preview and may be changed or '\
'removed in a future release. Elastic will apply best effort to fix '\
'removed in a future release. Elastic will work to fix '\
'any issues, but features in technical preview are not subject to '\
'the support SLA of official GA features.'
)
Expand Down
2 changes: 1 addition & 1 deletion resources/asciidoctor/lib/care_admonition/extension.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class CareAdmonition < Asciidoctor::Extensions::Group
This functionality is in development and may be changed or removed completely in a future release. These features are unsupported and not subject to the support SLA of official GA features.
TEXT
PREVIEW_DEFAULT_TEXT = <<~TEXT.strip
This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.
This functionality is in technical preview and may be changed or removed in a future release. Elastic will work to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.
TEXT

def activate(registry)
Expand Down
4 changes: 2 additions & 2 deletions resources/asciidoctor/spec/care_admonition_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def expect_inline_admonition(text)
let(:admon_class) { 'warning' }
let(:default_text) do
<<~TEXT.strip
This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.
This functionality is in technical preview and may be changed or removed in a future release. Elastic will work to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.
TEXT
end
include_examples 'care admonition'
Expand All @@ -257,7 +257,7 @@ def expect_inline_admonition(text)
let(:admon_class) { 'warning' }
let(:default_text) do
<<~TEXT.strip
This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.
This functionality is in technical preview and may be changed or removed in a future release. Elastic will work to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.
TEXT
end
include_examples 'care admonition'
Expand Down